home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------------
- //
- // Aircraft.dmd -- DataModule with Aircraft table.
- //
- // Dependencies: FLEET.CDM
- //
- // Visual dBASE Samples Group
- //
- // $Revision: 1.0 $
- //
- // Copyright (c) 1997, Borland International, Inc.
- // All rights reserved.
- //
- //---------------------------------------------------------------
- ** END HEADER -- do not remove this line
- //
- // Generated on 10/09/97
- //
- class aircraftDataModule of FLEETCDATAMODULE from "Fleet.cdm"
-
-
- this.AIRCRAFT1 = new QUERY()
- this.AIRCRAFT1.parent = this
- with (this.AIRCRAFT1)
- left = 10.1111
- top = 0
- sql = 'SELECT * FROM "aircraft.dbf"'
- session = form.SESSIONFLEET
- database = form.dbfleet
- active = true
- endwith
-
- this.rowset = this.aircraft1.rowset
- endclass
-